(print_error_message): Don't handle Vsignaling_function here.
authorRichard M. Stallman <rms@gnu.org>
Fri, 12 Jul 2002 11:19:09 +0000 (11:19 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 12 Jul 2002 11:19:09 +0000 (11:19 +0000)
src/print.c

index 90d55615bc7dbaffa9718d08de36ec8256e5709d..1a68eaa9942b4253fab132f84644780b7f786258 100644 (file)
@@ -967,16 +967,6 @@ print_error_message (data, stream)
   tail = Fcdr_safe (data);
   GCPRO1 (tail);
 
-  /* If we know from where the error was signaled, show it in
-     *Messages*.  */
-  if (!NILP (Vsignaling_function) && SYMBOLP (Vsignaling_function))
-    {
-      char *name = XSTRING (SYMBOL_NAME (Vsignaling_function))->data;
-      message_dolog (name, strlen (name), 0, 0);
-      message_dolog (": ", 2, 0, 0);
-      Vsignaling_function = Qnil;
-    }
-
   /* For file-error, make error message by concatenating
      all the data items.  They are all strings.  */
   if (!NILP (file_error) && CONSP (tail))